Since Red Passion is a highly customized Blogger template and I being a beginner Blogger templates creator don`t really know XHTML :)

Anways, if you put lots of widgets on your sidebar, lets say you put 5-10 widgets on your sidebar using this template, you`ll see that in the WYSIWYG editor the widgets at the bottom start disappearing.

Actually they don`t disappear, they`re just hidden.

So if you want to place one widget over the other or change the sequence of the widgets, here`s what you need to do:

Goto: Dashboard<Layout<EDIT HTML:

Using CTRL+F, find "sidebar-wrapper". The browser will highlight the following code:


<div id='sidebar-wrapper'>
        <b:section class='sidebar' id='sidebar' preferred='yes'>
<b:widget id='Label1' locked='false' title='Labels' type='Label'/>
<b:widget id='BlogArchive1' locked='false' title='Blog Archive' type='BlogArchive'/>
<b:widget id='Profile1' locked='false' title='About Me' type='Profile'/>
</b:section>


Now see the above code, Each widget is denoted by the following code:

For example for Labels:
<b:widget id='Label1' locked='false' title='Labels' type='Label'/>

For Blog Archive:
<b:widget id='BlogArchive1' locked='false' title='Blog Archive' type='BlogArchive'/>

Now as you can see from the following widgets, they are in a sequence and will be displayed
in the same sequence on your blog.

So, if you want to place one widget over the other, you just need to cut[CTRL+X] the widget code and place it in the sequence.

For example:

<b:widget id='Label1' locked='false' title='Labels' type='Label'/>
<b:widget id='BlogArchive1' locked='false' title='Blog Archive' type='BlogArchive'/>
<b:widget id='Profile1' locked='false' title='About Me' type='Profile'/>

From the above code you can see the sequence that Labels will be displayed first, then Blog Archive and then Profile. SO if you want to place Profile widget above Labels widget, just cut[CTRL+x] the Profile code and paste it above Profile widget code, for illustration see below:

BEFORE:
<b:widget id='Label1' locked='false' title='Labels' type='Label'/>
<b:widget id='BlogArchive1' locked='false' title='Blog Archive' type='BlogArchive'/>
<b:widget id='Profile1' locked='false' title='About Me' type='Profile'/>

AFTER:
<b:widget id='Profile1' locked='false' title='About Me' type='Profile'/>
<b:widget id='Label1' locked='false' title='Labels' type='Label'/>
<b:widget id='BlogArchive1' locked='false' title='Blog Archive' type='BlogArchive'/>

You can identify each widget by looking for their TITLE for example in the above 3 widgets, the titles are:

title='About Me'

title='Labels'

title='Blog Archive'

Each widget is displayed by a title on the sidebar.

Hope you must have understood on how to place the widgets in a sequence using Red Passion template :)